home *** CD-ROM | disk | FTP | other *** search
/ The Charlie Rose Science Series Anthology / The Charlie Rose Science Series Anthology (Pfizer, Inc.)(2008).iso / mac / Charlie Rose Science Series Anthology.app / Contents / Resources / movie.swf / scripts / __Packages / mx / controls / streamingmedia / HMiniPlayBarTray.as < prev    next >
Text File  |  2008-02-01  |  433b  |  18 lines

  1. class mx.controls.streamingmedia.HMiniPlayBarTray extends MovieClip
  2. {
  3.    function HMiniPlayBarTray()
  4.    {
  5.       super();
  6.    }
  7.    function setWidth(aWidth)
  8.    {
  9.       this._middle._x = this._left._width;
  10.       this._middle._width = aWidth - this._left._width - this._right._width;
  11.       this._right._x = this._middle._x + this._middle._width;
  12.    }
  13.    function getHeight()
  14.    {
  15.       return this._left._height;
  16.    }
  17. }
  18.